home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / string / RCS / strstr.c,v < prev    next >
Text File  |  1989-03-22  |  2KB  |  115 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     89.03.22.16.07.57;  author rab;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.04.25.13.25.55;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24. 1.2
  25. log
  26. @*** empty log message ***
  27. @
  28. text
  29. @/* 
  30.  * strstr.c --
  31.  *
  32.  *    Source code for the "strstr" library routine.
  33.  *
  34.  * Copyright 1988 Regents of the University of California
  35.  * Permission to use, copy, modify, and distribute this
  36.  * software and its documentation for any purpose and without
  37.  * fee is hereby granted, provided that the above copyright
  38.  * notice appear in all copies.  The University of California
  39.  * makes no representations about the suitability of this
  40.  * software for any purpose.  It is provided "as is" without
  41.  * express or implied warranty.
  42.  */
  43.  
  44. #ifndef lint
  45. static char rcsid[] = "$Header: /sprite/src/lib/c/string/RCS/strstr.c,v 1.1 88/04/25 13:25:55 ouster Exp Locker: rab $ SPRITE (Berkeley)";
  46. #endif /* not lint */
  47.  
  48. /*
  49.  *----------------------------------------------------------------------
  50.  *
  51.  * strstr --
  52.  *
  53.  *    Locate the first instance of a substring in a string.
  54.  *
  55.  * Results:
  56.  *    If string contains substring, the return value is the
  57.  *    location of the first matching instance of substring
  58.  *    in string.  If string doesn't contain substring, the
  59.  *    return value is 0.  Matching is done on an exact
  60.  *    character-for-character basis with no wildcards or special
  61.  *    characters.
  62.  *
  63.  * Side effects:
  64.  *    None.
  65.  *
  66.  *----------------------------------------------------------------------
  67.  */
  68.  
  69. char *
  70. strstr(string, substring)
  71.     register char *string;    /* String to search. */
  72.     char *substring;        /* Substring to try to find in string. */
  73. {
  74.     register char *a, *b;
  75.  
  76.     /* First scan quickly through the two strings looking for a
  77.      * single-character match.  When it's found, then compare the
  78.      * rest of the substring.
  79.      */
  80.  
  81.     b = substring;
  82.     if (*b == 0) {
  83.     return string;
  84.     }
  85.     for ( ; *string != 0; string += 1) {
  86.     if (*string != *b) {
  87.         continue;
  88.     }
  89.     a = string;
  90.     while (1) {
  91.         if (*b == 0) {
  92.         return string;
  93.         }
  94.         if (*a++ != *b++) {
  95.         break;
  96.         }
  97.     }
  98.     b = substring;
  99.     }
  100.     return (char *) 0;
  101. }
  102. @
  103.  
  104.  
  105. 1.1
  106. log
  107. @Initial revision
  108. @
  109. text
  110. @d17 2
  111. a18 2
  112. static char rcsid[] = "$Header: proto.c,v 1.2 88/03/11 08:39:08 ouster Exp $ SPRITE (Berkeley)";
  113. #endif not lint
  114. @
  115.